home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_400
/
429_01
/
chess12
/
uplayer.hpp
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-03-30
|
325 b
|
18 lines
#if !defined(USERPLAYER_HPP)
#define USERPLAYER_HPP
#include "chess.hpp"
#include "player.hpp"
// player whose moves are selected by the user
class USERPLAYER : public PLAYER
{
public:
USERPLAYER(PIECECOLOR color) : PLAYER(color) { }
virtual GAMESTATUS play(BOARD &board) const;
};
#endif